All Questions
157 questions
10votes
7answers
1kviews
Rudimentary black jack game implementation
I started the 100 Days of Code: The Complete Python Bootcamp about a week ago. I finished day 11, and I wrote a rudimentary blackjack game. I'm just looking for some advise on how I did. Am I showing ...
3votes
1answer
134views
Simple Tic-tac-toe in Python
I am a beginner programmer who coded a simple Tic-tac-toe in Python for practice. Any feedback, especially regarding best practices and tidying up the code, is appreciated. ...
5votes
1answer
134views
guess-the-number game
I'm a total Python beginner and made a number guessing game as first project. The user has to guess the number the computer is thinking of. Please give me feedback! ...
0votes
2answers
444views
OOP Tic Tac Toe Game
I have built a project OOP Tic Tac Toe. I am beginner-intermediate developer. Can you tell me what I can improve, what I did wrong and what to look up to? This is my first OOP project. I'm happy that ...
11votes
3answers
6kviews
Spin the wheel game
I'm new to Python and coded this spin-the-wheel game where the user can bet on each spin of the wheel and either double their money, 1.5x their money, lose their money or keep it. It all seems to be ...
9votes
2answers
900views
Simulation of hero vs monster
I fairly started coding no more than 2 weeks now; not even for long, and a thread inspired me to make a random back-to-forth game between a Hero and a Monster where it randomly choose a certain number ...
9votes
1answer
1kviews
A Text-Based Game
The following code is a simple text-based RPG game where you can move between rooms and fight with monsters until you defeat the boss. ...
3votes
4answers
271views
simple Rock, paper, scissors game
I just recently started learning how to program and how to use python and after watching a few courses I made a simple Rock paper scissors game where basically the script randomly chooses Rock, paper ...
1vote
1answer
159views
Simple Blackjack game
This is my simple Blackjack game made in Python. I would love some feedback to write better code. ...
4votes
2answers
889views
A simple spaceship game
How could I improve this code? It's a little game. If you run it, instructions will appear. In particular, I'd like to know whether I can make it considerably shorter any trick :) ? whether I can get ...
4votes
2answers
1kviews
Battle terminal-based game
I'm new to learning OOP in python and played around with it, making this quick battle terminal based game-ish, but I'm wondering how I can optimize this to maybe less lines of code and just overall ...
3votes
2answers
506views
Python random number guessing game
I've been learning Python for about 4 days now. Python is my first programming language, so I'm not that good at coding yet. I have been programming a little random number game as my first project and ...
1vote
1answer
145views
basic tic tac toe
I looked a little into HTML a year ago but decided to try python yesterday and came up with this for tic-tac-toe. I have no programming experience and I haven't yet looked at other peoples versions of ...
3votes
1answer
502views
Blackjack game in python w/ bot
I am a beginner programmer and this is my first project, a blackjack game with a functioning dealer in python. Any feedback would be appreciated (especially if its about bot improvement). ...
8votes
1answer
1kviews
(Beginner) Mastermind game in Python
After completing an introduction to Python tutorial, I wanted to put my basic knowledge of control flow and data structures to use, and felt this was a great choice for my first program. I created the ...